type net/http.http2responseWriterState

12 uses

	net/http (current package)
		h2_bundle.go#L3785: 		rws := &http2responseWriterState{}
		h2_bundle.go#L5867: 	rws := http2responseWriterStatePool.Get().(*http2responseWriterState)
		h2_bundle.go#L5869: 	*rws = http2responseWriterState{} // zero all the fields
		h2_bundle.go#L6078: 	rws *http2responseWriterState
		h2_bundle.go#L6088: type http2responseWriterState struct {
		h2_bundle.go#L6115: type http2chunkWriter struct{ rws *http2responseWriterState }
		h2_bundle.go#L6119: func (rws *http2responseWriterState) hasTrailers() bool { return len(rws.trailers) > 0 }
		h2_bundle.go#L6121: func (rws *http2responseWriterState) hasNonemptyTrailers() bool {
		h2_bundle.go#L6133: func (rws *http2responseWriterState) declareTrailer(k string) {
		h2_bundle.go#L6151: func (rws *http2responseWriterState) writeChunk(p []byte) (n int, err error) {
		h2_bundle.go#L6293: func (rws *http2responseWriterState) promoteUndeclaredTrailers() {
		h2_bundle.go#L6386: func (rws *http2responseWriterState) writeHeader(code int) {